Fix python.el obsolescence versions
authorGlenn Morris <rgm@gnu.org>
Mon, 18 Jun 2012 18:23:59 +0000 (14:23 -0400)
committerGlenn Morris <rgm@gnu.org>
Mon, 18 Jun 2012 18:23:59 +0000 (14:23 -0400)
* lisp/progmodes/python.el (python-proc, python-buffer)
(python-send-receive, python-send-string): Fix obsolete versions.

lisp/ChangeLog
lisp/progmodes/python.el

index e32e1611d89983c917547f910f2e9d4f00c73335..615f67fa53967e781e4efefc245af6b3b53adada 100644 (file)
@@ -1,3 +1,8 @@
+2012-06-18  Glenn Morris  <rgm@gnu.org>
+
+       * progmodes/python.el (python-proc, python-buffer)
+       (python-send-receive, python-send-string): Fix obsolete versions.
+
 2012-06-18  Martin Rudalics  <rudalics@gmx.at>
 
        * window.el (special-display-p): Completely remove stringp
index db21d800e70d662a31c921ef8542bccb0516f87f..3cbd744e3e7b205703f2e78bb7f3af808bfe28e6 100644 (file)
@@ -1569,10 +1569,10 @@ there for compatibility with CEDET.")
     (get-buffer-process proc-buffer-name)))
 
 (define-obsolete-function-alias
-  'python-proc 'python-shell-internal-get-or-create-process "23.3")
+  'python-proc 'python-shell-internal-get-or-create-process "24.2")
 
 (define-obsolete-variable-alias
-  'python-buffer 'python-shell-internal-buffer "23.3")
+  'python-buffer 'python-shell-internal-buffer "24.2")
 
 (defun python-shell-send-string (string &optional process msg)
   "Send STRING to inferior Python PROCESS.
@@ -1627,10 +1627,10 @@ Returns the output.  See `python-shell-send-string-no-output'."
    (python-shell-internal-get-or-create-process) nil))
 
 (define-obsolete-function-alias
-  'python-send-receive 'python-shell-internal-send-string "23.3")
+  'python-send-receive 'python-shell-internal-send-string "24.2")
 
 (define-obsolete-function-alias
-  'python-send-string 'python-shell-internal-send-string "23.3")
+  'python-send-string 'python-shell-internal-send-string "24.2")
 
 (defun python-shell-send-region (start end)
   "Send the region delimited by START and END to inferior Python process."